home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000273_news@columbia.edu_Thu Nov 2 22:44:51 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26077
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 2 Nov 1995 17:44:54 -0500
  3. Received: by apakabar.cc.columbia.edu id AA01505
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 2 Nov 1995 17:44:53 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Changing Colors
  9. Date: 2 Nov 1995 22:44:51 GMT
  10. Organization: Columbia University
  11. Lines: 31
  12. Message-Id: <47bhl3$1ev@apakabar.cc.columbia.edu>
  13. References: <47al3b$gr3@news-owego.endicott.ibm.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <47al3b$gr3@news-owego.endicott.ibm.com>,
  18. Shirley Kupst  <shirley@lfs.loral.com> wrote:
  19. : I'm having troubles with changing colors in Kermit: I can successfully
  20. : change the foreground, background and underscore colors using the set
  21. : terminal color xx command.  What I can't figure out is how to change other
  22. : colors.  In particular, when connected to a VM host using Kermite for DOS,
  23. : the VM menu displays the background as black (this is OK), PF option keys
  24. : and command prompt as white (this is OK), text that is input at the command
  25. : prompt is red (this is also OK).
  26. : However, the text next to the PF keys which describes what you're supposed
  27. : to do with the menu displays in dark blue, and is very hard to see.  I need
  28. : to change it to a lighter blue.  I'm not sure what this text "name" is to
  29. : change it.  Changing the underscore color didn't help.
  30. Kermit lets you set your normal foreground and background (and underscore
  31. simulation) colors that apply to ordinary text.  Other effects are
  32. accomplished by the host application.  In your case, it sounds like the
  33. application is sending explicit coloration escape sequences.  If the host
  34. says "color this field blue", it'll be blue, no matter what your fore- and
  35. background colors are.
  36.  
  37. You do have some slight degree of control, however, in that you can choose
  38. whether the foreground color is to be bright (bold) or normal:
  39.  
  40.   SET TERMINAL COLOR 3x 4x    ; Normal
  41.   SET TERMINAL COLOR 1 3x 4x  ; Bright
  42.  
  43. Maybe specifying (or not specifying) "bright" will make the difference.
  44.  
  45. - Frank